#(set-default-paper-size "letter") \version "2.24.0" \header { source = "" style = "" copyright = "" lastupdated = "" title = "Do you know what it means to miss New Orleans" composer = "Eddie De Lange / Louis Alter" poet = "" tagline = \markup \bold{ 13 July 2026 } } % modify maj9 and 6(add9) % Exception music is chords with markups chExceptionMusic = { 1-\markup { m \super "7/♭5" } } % Convert music to list and prepend to existing exceptions. chExceptions = #( append ( sequential-music-to-chord-exceptions chExceptionMusic #t) ignatzekExceptions) theChords = \chordmode { \set chordNameExceptions = #chExceptions | R1 | c2:6 g:7.5+ | c2:m7 a:m7 | e2:m7 a:m7 | d1:9 | d2:m7 dis:dim7 | e2:m7 a:7 | d2:m7 aes:7 | g1:7 | c2 g:7.5+ | c2:m7 a:m7 | e2:m7 a:m7 | d1:9 | d2:m7 dis:dim7 | e2:m7 a:7 | d2:m7 g:7 | c2 c4:m7.5- f:7 | bes2:m7 ees:9 | aes2 f:7 | bes2:m7 ees:9 | aes1 | a2:m7 d:9 | g2:6 e:m7 | a2:m7 d:9 | d2:m7 g:7 | c2:6 g:7.5+ | c2:m7 a:m7 | e2:m7 a:m7 | d1:9 | d2:m7 dis:dim7 | e2:m7 a:7 | d2.:9 g4:7 | c1 } melody = { \time 4/4 \tempo 4=108 \relative c' { \key c\major r2 r4 c8 d | e8 g a b ~ b4. c8 | b8 a g a~ a4. c8 | b8 a g a~ a4 c | e,2. r8 ees | d8 cis d c'~ c4. b8 | d8 des c b bes a4 e8 | g8 ges f c' ~ c4 ees,8 d ~ | d2. c8 d | e8 g a b ~ b4. c8 | b8 a g a ~ a4. c8 | b8 a g a ~ a4 c | e,2. r8 ees | d8 cis d c' ~ c4. b8 | d des c b bes a4 e8 | g8 ges f e ~ e4 g8 c ~ | c2. c4 | c2 ~ c8 bes g ees | f8 f4. ~ f8 c' des c | c2 ~ c8 bes g ees | f2. c'4 | b2 ~ b8 a fis d | e8 fis d e ~ e f g b | c8 d b c ~ c4 b8 d ~ | d2. c,8 d | e g a b ~ b4. c8 | b8 a g a ~ a4. c8 | b8 a g a ~ a4 c | e,2. r8 ees | d8 cis d c' ~ c4. b8 | d8 des c b bes a4. | e'8 c a e' ~ e a, e'4 | c2. r4 | } } theLyrics = \lyricmode { Do you know what it means to miss New Or- leans, and miss it each night and day? I know I'm not wrong, the feel- in's get- tin' strong -er the long- er I stay a- way. Miss the moss- cov- ered vines, the tall su- gar pines where mock- in' birds used to sing. And I'd like to see the la- zy Mis- sis- sip- pi a hur- ry- in' in- to spring. The moon- light on the bay- ou, a cre- ole tune that fills the air; I dream a- about mag- nol- ias in June and soon I'm wish- in' that I was there. Do you know what it means to miss New Or- leans when that's where you left your heart? And there's some- thing more: I miss the one I care for more than I miss New Or- leans. } \book { \score { << \new Staff \melody %\new Staff \theChords >> \midi { } } } #(set-default-paper-size "letter" 'portrait) #(define output-suffix "C") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "C" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \theChords } \new Voice = "melody" { \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "C-chords") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "C" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \theChords } \new Staff { \theChords } \new Voice = "melody" { \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "C-bass") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "C" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \theChords } \new Voice = "melody" { \clef "bass" \transpose c c,, \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "C-bass-chords") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "C" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \theChords } \new Staff { \clef "bass" \transpose c c,, \theChords } \new Voice = "melody" { \clef "bass" \transpose c c,, \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "Bflat") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "B flat" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \transpose bes c \theChords } \new Voice = "melody" { \transpose bes c' \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "Bflat-chords") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "B flat" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \transpose bes c \theChords } \new Staff { \transpose bes c' \theChords } \new Voice = "melody" { \transpose bes c' \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "Eflat") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "E flat" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \transpose ees c \theChords } \new Voice = "melody" { \transpose ees c' \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } } #(define output-suffix "Eflat-chords") \book { \paper { #(define indent (* 0 cm)) } \header { instrument = "E flat" } \score { \new StaffGroup << \new ChordNames { \set chordChanges = ##t \transpose ees c \theChords } \new Staff { \transpose ees c' \theChords } \new Voice = "melody" { \transpose ees c' \melody } \new Lyrics \lyricsto "melody" { \theLyrics } >> } }